home *** CD-ROM | disk | FTP | other *** search
- #if defined(__GNUC__) && !defined(__OPTIMIZE__)
- #error Please compile this file with -O
- #else
-
- #include <string.h>
-
- /************************************************************************/
-
- char *(strcpy)(char *Dest, const char *Source)
-
- {
- #ifdef __GNUC__
- return __inlined_strcpy(Dest,Source);
- #else
- return __builtin_strcpy(Dest,Source);
- #endif
- }
-
- #endif /* defined(__GNUC__) && !defined(__OPTIMIZE__) */
-